home *** CD-ROM | disk | FTP | other *** search
- // ask.cpp -- Prompt for and display a name
-
- #include <iostream.h>
-
- main()
- {
- char name[128];
-
- cout << "What's your first name? ";
- cin >> name;
- cout << "\nYou entered: " << name;
- }
-
-
- // Copyright (c) 1990 by Tom Swan. All rights reserved
- // Revision 1.00 Date: 10/23/1990 Time: 02:38 pm
-
- // Revision 1.01 Date: 07/08/1991 Time: 05:41 pm
- // Converted for Borland C++ 2.0
-
-